home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / OWLINC.PAK / VERSION.H < prev    next >
Text File  |  1997-05-06  |  742b  |  24 lines

  1. //----------------------------------------------------------------------------
  2. // ObjectWindows
  3. // Copyright (c) 1991, 1997 by Borland International, All Rights Reserved
  4. //
  5. //$Revision:   10.13  $
  6. //
  7. //----------------------------------------------------------------------------
  8. #if !defined(OWL_VERSION_H)
  9. #define OWL_VERSION_H
  10.  
  11. // Updated for v5.2 - Release 504
  12. //
  13. #define OWLInternalVersion 0x05000400L  // Internal version OWL build with
  14. #define OWLVersion         0x0520       // Version building with: XX.XX
  15. #define OWLVersionStr      "5.2\0\0"   // String version of above
  16.  
  17. #if defined(__WIN32__)
  18. # define OWLDLLName        "OWL52F\0"
  19. #else
  20. # define OWLDLLName        "OWL52\0"
  21. #endif
  22.  
  23. #endif  //  OWL_VERSION_H
  24.